Details
-
New Feature
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
3.3
-
None
Description
The instanceof operator allows to check whether an object belongs to a certain class.
It is using Class.isInstance to perform the check. As a convenience, {{ !instanceof }} is supported as well avoiding parenthesis as in:
x !instanceof y
is equivalent to
!(x instanceof y)